home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000232_news@columbia.edu_Tue Nov 22 14:24:16 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10964
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 22 Nov 1994 09:24:23 -0500
  3. Received: by apakabar.cc.columbia.edu id AA26202
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 22 Nov 1994 09:24:22 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Help with binary downloads.
  9. Date: 22 Nov 1994 14:24:16 GMT
  10. Organization: Columbia University
  11. Lines: 45
  12. Message-Id: <3asuug$pij@apakabar.cc.columbia.edu>
  13. References: <1994Nov17.125037@clstac> <1994Nov21.194523.4841@apgea.army.mil>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <1994Nov21.194523.4841@apgea.army.mil>,
  18. Joseph E. Eisenmeier <jeeisenm> <jeeisenm> wrote:
  19. >...
  20. >I have the same identical problem.  I can download from 8 bit systems
  21. >using 3 different commercial packages.  But everybody says kermit
  22. >is the only solution for 7 bit systems.  When I d'l a zip file,
  23. >pkunzip can read the zipped file directory, but it fails a crc check.
  24. >Why can't these people make life simple and switch to 8 bit?
  25. >
  26. Because of billions of dollars of investment in the installed base of
  27. communications equipment, and even in some cases, operating systems.
  28.  
  29. Let's be specific about exactly which Kermit software and which versions
  30. of it we are talking about.  Released versions of Kermit software *do*
  31. *work* in both the 7-bit and 8-bit environments.  There was a problem
  32. with a couple of the Beta edits of MS-DOS Kermit 3.14, but that's Beta
  33. software, not released software.  The current Beta (14) should not have
  34. any problems.
  35.  
  36. Leaving Betas aside for a moment, the standard method for transferring
  37. files -- any kind of files -- over a 7-bit connection with Kermit is to
  38. tell *both* Kermit programs to:
  39.  
  40.   SET PARITY EVEN
  41.  
  42. (or ODD, or MARK, or SPACE).  When Kermit's parity is set to anything
  43. other than NONE, this enables -- in fact, forces -- 7-bit transfers,
  44. meaning that 8-bit data gets encoded in a special 7-bit form that can
  45. pass through the 7-bit connection.  This should always work.
  46.  
  47. In practice, it is usually only necessary to tell the file *sender*
  48. to "set parity <whatever>", because then it will tell the receiver.
  49. Newer Kermit versions (1990's vintage) will also detect even, odd, or
  50. mark parity automatically, even if you don't give a "set parity"
  51. command.  But they can't detect "space" parity, which is indistinguishable
  52. from no parity at all, and which is increasingly common on terminal-server
  53. connections, etc.
  54.  
  55. So to be safe, give a "set parity" command to both Kermit programs.
  56.  
  57. Finally, don't expect this to work with non-Columbia Kermit implementations.
  58. In my experience, few of the shareware or commercial packages get this
  59. stuff right.
  60.  
  61. - Frank